layout.tsx 352 B

123456789101112131415
  1. import Footer from "@/components/Footer";
  2. import { FC, PropsWithChildren } from "react";
  3. type Props = {};
  4. const Layout: FC<PropsWithChildren<Props>> = (props) => {
  5. const { children } = props;
  6. return (
  7. <>
  8. <main className={"main-footer"}>{children}</main>
  9. <Footer />
  10. </>
  11. );
  12. };
  13. export default Layout;